home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 52
/
Amiga Format AFCD52 (Issue 136, May 2000).iso
/
-in_the_mag-
/
multitasking
/
feature
/
executive_v2.10
/
executiveapi
/
makefile
< prev
next >
Wrap
Makefile
|
2000-03-02
|
463b
|
33 lines
#
# GCC makefile for ExecutiveAPI/Example
#
# This file is public domain.
#
# Author: Petri Nordlund <petrin@megabaud.fi>
#
# $Id: MF.compile 1.1 1996/09/05 23:20:13 petrin Exp petrin $
#
CFLAGS = -O
SHELL = USR:BIN/sh
# Source files
SRCS = Example.c
# Object files
OBJS = $(SRCS:.c=.o)
all : Example
Example : Example.o
gcc $(CFLAGS) -o Example $^ -lamiga -lauto
Example.o : Example.c
gcc $(CFLAGS) -c Example.c
clean:
-delete Example Example.o